home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / comm / tcp / cp4_2_1_nolibs.lha / cp4_NOTREG / Install_CP4.2 < prev    next >
Encoding:
Text File  |  1995-04-16  |  11.4 KB  |  488 lines

  1. ;Installer V4 For AmiTCP Control Panel V4.2
  2. ;
  3. ;©Martin Hunt 1995
  4. ;
  5. ;
  6. (set amitcpdir
  7.    (askdir
  8.        (prompt "Where is AmiTCP installed?")
  9.        (help @askdir-help)
  10.        (default "dh1:amitcp")
  11.    )
  12. )
  13.  
  14. (makeassign "amitcp" amitcpdir)
  15.  
  16. (set @default-dest
  17.    (askdir
  18.        (prompt "Where is AmiTCP Control Panel Installed?")
  19.        (help @askdir-help)
  20.        (default "sys:wbstartup")
  21.    )
  22. )
  23.  
  24. (copyfiles
  25.    (prompt "Copying AmiTCP Control Panel to " @default-dest )
  26.    (help @copyfiles-help)
  27.    (source "cp_MainProg/controlpanel4.2")
  28.    (dest @default-dest)
  29.    (infos)
  30. )
  31. (copyfiles
  32.    (prompt "Copying AmiTCP Control Panel to " @default-dest )
  33.    (help @copyfiles-help)
  34.    (source "cp_MainProg/controlpanel.exe")
  35.    (dest "c:")
  36. )
  37.  
  38. (set @doc-dest
  39.    (askdir
  40.        (prompt "Where do you want to install AmiTCP Control Panel's Documents?")
  41.        (help @askdir-help)
  42.        (default "amitcp:docs")
  43.    )
  44. )
  45.  
  46.  
  47. (copyfiles
  48.    (prompt "Copying AmiTCP Control Panel Docs to " @doc-dest )
  49.    (help @copyfiles-help)
  50.    (source "docs")
  51.    (all)
  52.    (dest @doc-dest)
  53.    (infos)
  54.    (confirm)
  55. )
  56.  
  57. (copyfiles
  58.    (prompt "Copying AmiTCP Control Panel Scripts and Commands to AmiTCP:bin" )
  59.    (help @copyfiles-help)
  60.    (source "bin")
  61.    (all)
  62.    (dest "Amitcp:bin")
  63.    (infos)
  64.    (confirm)
  65. )
  66.  
  67. (set left
  68.     (asknumber
  69.        (prompt "Enter How Far From The Left \n Of The Screen Do You Want \n Control Panel To Appear")
  70.        (help @asknumber-help)
  71.        (range 0 1200)
  72.        (default 20)
  73.     )
  74. )
  75.  
  76. (set top
  77.     (asknumber
  78.        (prompt "Enter How Far Down The Screen \n Do You Want Control Panel To Appear")
  79.        (help @asknumber-help)
  80.        (range 0 600)
  81.        (default 30)
  82.     )
  83. )
  84.  
  85. (set device1
  86.    (askbool
  87.       (prompt "Select The Device\n You Use To\nConnect To The Net\nThis Is Usually\n\nSLIP")
  88.       (default 1)
  89.       (choices "SLIP" "OTHER")
  90.       (help "IF Not Sure It Is Probably SLIP")
  91.    )  
  92. )
  93.  
  94. (if(= device1 1)
  95.    (set DEVICE ("DEVICE = SLIP\n"))
  96.    (set DEVICE ("DEVICE = PPP\n"))
  97. )
  98.  
  99. (set Status1
  100.    (askbool
  101.       (prompt "\nDo You Want\nControl Panel\nStatus Information")
  102.       (default 1)
  103.       (choices "YES" "NO")
  104.       (help "Oh dear, just make a decsion!")
  105.    )
  106. )
  107.  
  108. (if(= Status1 1)
  109.    (set STATUS ("STATUS = YES\n"))
  110.    (set STATUS ("STATUS = NO\n"))
  111. )
  112.  
  113. (message "\nControl Panel V4 runs various programs.\nAs everybodies Amitcp set up varies\nit is necessary to configure the particular\n programs you are using.\n")
  114. (set link
  115.    (askfile
  116.       (prompt "What Script Do You Use To Connect To The Net?")
  117.       (help @askfile-help)
  118.       (default "amitcp:bin/link_gui.exe")
  119.    )
  120. )
  121.  
  122. (set mail
  123.    (askfile
  124.        (prompt "What Mail Program Do You Use?")
  125.        (help @askfile-help)
  126.        (default "amitcp:bin/mail")
  127.    )
  128. )
  129.  
  130. (set news
  131.    (askfile
  132.        (prompt "What News Program Do You Use?")
  133.        (help @askfile-help)
  134.        (default "amitcp:bin/grn")
  135.    )
  136. )
  137.  
  138. (set ftp
  139.    (askfile
  140.        (prompt "What FTP Program Do You Use?")
  141.        (help @askfile-help)
  142.        (default "amitcp:bin/gui-ftp")
  143.    )
  144. )
  145.  
  146. (set WWW
  147.    (askfile
  148.        (prompt "What WWW Browser Do You Use?")
  149.        (help @askfile-help)
  150.        (default "amitcp:bin/amosaic")
  151.    )
  152. )
  153.  
  154. (set Gopher
  155.    (askfile
  156.        (prompt "What Gopher Program Do You Use?")
  157.        (help @askfile-help)
  158.        (default "amitcp:bin/gopher")
  159.    )
  160. )
  161.  
  162. (set IRC
  163.    (askfile
  164.        (prompt "What IRC Program Do You Use?")
  165.        (help @askfile-help)
  166.        (default "amitcp:bin/gv")
  167.    )
  168. )
  169.  
  170. (set UUDECODER
  171.    (askfile
  172.        (prompt "What UUDecoder Do You Use?")
  173.        (help @askfile-help)
  174.        (default "amitcp:bin/uuxt-gui")
  175.    )
  176. )
  177.  
  178. (set DeArchiver
  179.    (askfile
  180.        (prompt "What DeArchiver Do You Use?")
  181.        (help @askfile-help)
  182.        (default "amitcp:bin/guiarc")
  183.    )
  184. )
  185.  
  186. (set newsed
  187.    (askfile
  188.        (prompt "What News Group Editor Do You Use?")
  189.        (help @askfile-help)
  190.        (default "amitcp:bin/newsed_gui.exe")
  191.    )
  192. )
  193.  
  194.  
  195. (message "Control Panel V4\n has 2 buttons and 5 menu items\n which can be configured by the user,\n\n If you do not require these options\n just keep pressing proceed")
  196. (set option1Text
  197.    (askstring
  198.       (prompt "Enter Menu and Button Text For Option 1/nIt Must Consist Of 1 Word Only")
  199.       (help @askstring-help)
  200.       (default " ")
  201.    )
  202. )
  203. (set option1prog
  204.    (askfile
  205.       (prompt "Which Program Should This Option Run?")
  206.       (help @askfile-help)
  207.       (default " ")
  208.    )
  209. )
  210. (set option2Text
  211.    (askstring
  212.       (prompt "Enter Menu and Button Text For Option 2\nIt Must Consist Of 1 Word Only")
  213.       (help @askstring-help)
  214.       (default " ")
  215.    )
  216. )
  217. (set option2prog
  218.    (askfile
  219.       (prompt "Which Program Should This Option Run?")
  220.       (help @askfile-help)
  221.       (default " ")
  222.    )
  223. )
  224. (set option3Text
  225.    (askstring
  226.       (prompt "Enter Menu Text For Option 3\nIt Must Consist Of 1 Word Only")
  227.       (help @askstring-help)
  228.       (default " ")
  229.    )
  230. )
  231. (set option3prog
  232.    (askfile
  233.       (prompt "Which Program Should This Option Run?")
  234.       (help @askfile-help)
  235.       (default " ")
  236.    )
  237. )
  238. (set option4Text
  239.    (askstring
  240.       (prompt "Enter Menu Text For Option 4\nIt Must Consist Of 1 Word Only")
  241.       (help @askstring-help)
  242.       (default " ")
  243.    )
  244. )
  245. (set option4prog
  246.    (askfile
  247.       (prompt "Which Program Should This Option Run?")
  248.       (help @askfile-help)
  249.       (default " ")
  250.    )
  251. )
  252. (set option5Text
  253.    (askstring
  254.       (prompt "Enter Menu Text For Option 5\nIt Must Consist Of 1 Word Only")
  255.       (help @askstring-help)
  256.       (default " ")
  257.    )
  258. )
  259. (set option5prog
  260.    (askfile
  261.       (prompt "Which Program Should This Option Run?")
  262.       (help @askfile-help)
  263.       (default " ")
  264.    )
  265. )
  266. (message "Control Panel V4\n allows the user details for 4 users to be preset,\n and quickly changed by using a menu.\n\nIf you don't want use this facility\njust keep pressing proceed.")
  267. (set User1Text
  268.    (askstring
  269.       (prompt "Enter Menu Text For User 1\nIt Must Consist Of 1 Word Only")
  270.       (help @askstring-help)
  271.       (default "")
  272.    )
  273. )
  274. (set user1name
  275.    (askstring
  276.       (prompt "Enter the User Name of User 1\nThis Must Consist Of One Word Only")
  277.       (help @askstring-help)
  278.       (default "")
  279.    )
  280. )
  281. (set user1realname
  282.    (askstring
  283.       (prompt "Enter the Real Name of User 1")
  284.       (help @askstring-help)
  285.       (default "")
  286.    )
  287. )
  288.  
  289. (set User2Text
  290.    (askstring
  291.       (prompt "Enter Menu Text For User 2\nIt Must Consist Of 1 Word Only")
  292.       (help @askstring-help)
  293.       (default "")
  294.    )
  295. )
  296. (set user2name
  297.    (askstring
  298.       (prompt "Enter the User Name of User 2\nThis Must Consist Of One Word Only")
  299.       (help @askstring-help)
  300.       (default "")
  301.    )
  302. )
  303. (set user2realname
  304.    (askstring
  305.       (prompt "Enter the Real Name of User 2")
  306.       (help @askstring-help)
  307.       (default "")
  308.    )
  309. )
  310. (set User3Text
  311.    (askstring
  312.       (prompt "Enter Menu Text For User 3\nIt Must Consist Of 1 Word Only")
  313.       (help @askstring-help)
  314.       (default "")
  315.    )
  316. )
  317. (set user3name
  318.    (askstring
  319.       (prompt "Enter the User Name of User 3\nThis Must Consist Of One Word Only")
  320.       (help @askstring-help)
  321.       (default "")
  322.    )
  323. )
  324. (set user3realname
  325.    (askstring
  326.       (prompt "Enter the Real Name of User 3")
  327.       (help @askstring-help)
  328.       (default "")
  329.    )
  330. )
  331. (set User4Text
  332.    (askstring
  333.       (prompt "Enter Menu Text For User 4\nIt Must Consist Of 1 Word Only")
  334.       (help @askstring-help)
  335.       (default "")
  336.    )
  337. )
  338. (set user4name
  339.    (askstring
  340.       (prompt "Enter the User Name of User 4\nThis Must Consist Of One Word Only")
  341.       (help @askstring-help)
  342.       (default "")
  343.    )
  344. )
  345. (set user4realname
  346.    (askstring
  347.       (prompt "Enter the Real Name of User 4")
  348.       (help @askstring-help)
  349.       (default "")
  350.    )
  351. )
  352. (message "Control Panel V4\nAllows You To Change The Pop You Use\nBy Selecting A Menu option\n\nIf You Do Not require This Option \nJust Keep Pressing Proceed")
  353. (set pop1text
  354.    (askstring
  355.       (prompt "Enter The Menu Text For POP1\nThis Must Consist Of One Word Only")
  356.       (help @askstring-help)
  357.       (default "")
  358.    )
  359. )
  360. (set pop1file
  361.    (askfile
  362.       (prompt "What Dialscript Is Used To Dial This POP")
  363.       (help @askfile)
  364.       (default "")
  365.    )
  366. )
  367. (set pop2text
  368.    (askstring
  369.       (prompt "Enter The Menu Text For POP2\nThis Must Consist Of One Word Only")
  370.       (help @askstring-help)
  371.       (default "")
  372.    )
  373. )
  374. (set pop2file
  375.    (askfile
  376.       (prompt "What Dialscript Is Used To Dial This POP")
  377.       (help @askfile)
  378.       (default "")
  379.    )
  380. )
  381. (set pop3text
  382.    (askstring
  383.       (prompt "Enter The Menu Text For POP3\nThis Must Consist Of One Word Only")
  384.       (help @askstring-help)
  385.       (default "")
  386.    )
  387. )
  388. (set pop3file
  389.    (askfile
  390.       (prompt "What Dialscript Is Used To Dial This POP")
  391.       (help @askfile)
  392.       (default "")
  393.    )
  394. )
  395.  
  396.  
  397. (Set intro1 "; Control Panel Configuration File\n")
  398. (Set intro2 "; CPv4.0 23/3/95\n")
  399. (set blankline "\n")
  400. (Set intro3 "; Requester Position\n")
  401. (set leftpos ("LEFT = %ld \n" left))
  402. (set toppos ("TOP = %ld \n" top))
  403. (set intro4 "; Where Is AmiTCP stored?\n")
  404. (set amitcpdirt ("AMITCPDIR = %s \n" amitcpdir))
  405. (set Intro5 "; Programs Used By Control Panel\n")
  406. (set linkprog ("Link = %s \n" link))
  407. (set mailprog ("Mail = %s \n" mail))
  408. (set newsprog ("News = %s \n" news))
  409. (set FtpProg ("FTP = %s \n" ftp))
  410. (set WWWprog ("WWW = %s \n" www))
  411. (Set GopherProg ("Gopher = %s \n" gopher))
  412. (set IRCprog ("IRC = %s \n" irc))
  413. (set tracerouteprog ("TRACEROUTE = Amitcp:bin/ping.traceroute.exe\n"))
  414. (set pingprog ("PING = AMITCP:bin/ping.traceroute.exe\n"))
  415. (set archieprog ("ARCHIE = Amitcp:bin/archie_gui.exe\n"))
  416. (set fingerprog ("FINGER = Amitcp:bin/finger_gui.exe\n"))
  417. (set autoprog ("AUTO = AMITCP:bin/auto.exe\n"))
  418. (Set UUDecoderProg ("UUDECODER = %s \n" uudecoder))
  419. (Set Dearchiverprog ("DEARCHIVER = %s \n" dearchiver))
  420. (Set NewsEdProg ("NEWSEDPROG = %s \n" NewsEd))
  421. (set UserOptions ("; Control Panel User Options\n"))
  422. (set option1 ("OPTION1 = %s %s\n" option1text option1prog))
  423. (set option2 ("OPTION2 = %s %s\n" option2text option2prog))
  424. (set option3 ("OPTION3 = %s %s\n" option3text option3prog))
  425. (set option4 ("OPTION4 = %s %s\n" option4text option4prog))
  426. (set option5 ("OPTION5 = %s %s\n" option5text option5prog))
  427. (set Users ("; Control Panel Users\n"))
  428. (set user1 ("USER1 = %s %s %s \n" user1text user1name user1realname))
  429. (set user2 ("USER2 = %s %s %s \n" user2text user2name user2realname))
  430. (set user3 ("USER3 = %s %s %s \n" user3text user3name user3realname))
  431. (set user4 ("USER4 = %s %s %s \n" user4text user4name user4realname))
  432. (set Pops ("; Control Panel Pop's\n"))
  433. (set pop1 ("POP1 = %s %s\n" pop1text pop1file))
  434. (set pop2 ("POP2 = %s %s\n" pop2text pop2file))
  435. (set pop3 ("POP3 = %s %s\n" pop3text pop3file))
  436. (set endofconfig "; End Of Control Panel Config File")
  437. (textfile
  438.    (dest "s:cp.config")
  439.    (append intro1)
  440.    (append intro2)
  441.    (append blankline)
  442.    (append intro3)
  443.    (append leftpos)
  444.    (append toppos)
  445.    (append blankline)
  446.    (append Intro4)
  447.    (append amitcpdirt)
  448.    (append blankline)
  449.    (append device)
  450.    (append blankline)
  451.    (append status)
  452.    (append blankline)
  453.    (append intro5)
  454.    (append linkprog)
  455.    (append mailprog)
  456.    (append newsprog)
  457.    (append ftpprog)
  458.    (append wwwprog)
  459.    (append gopherprog)
  460.    (append ircprog)
  461.    (append pingprog)
  462.    (append tracerouteprog)
  463.    (append autoprog)
  464.    (append archieprog)
  465.    (append fingerprog)
  466.    (append uudecoderprog)
  467.    (append dearchiverprog)
  468.    (append newsedprog)
  469.    (append blankline)
  470.    (append useroptions)
  471.    (append option1)
  472.    (append option2)
  473.    (append option3)
  474.    (append option4)
  475.    (append option5)
  476.    (append users)
  477.    (append user1)
  478.    (append user2)
  479.    (append user3)
  480.    (append user4)
  481.    (append pops)
  482.    (append pop1)
  483.    (append pop2)
  484.    (append pop3)
  485.    (append endofconfig)
  486. )
  487.  
  488.